home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / dos / diverses / him / mfdeltc.mak < prev    next >
Encoding:
Text File  |  1988-12-01  |  1.8 KB  |  93 lines

  1. # ********************* Makefile **************************
  2. # Makefile Name: mfdeltc.mak
  3. #
  4. # Make Program to Use: Borland Make
  5. #
  6. # Description: Makes the HIM Menu Manager demo mfdel.exe
  7. #
  8. # Programs Used During Make:    Borland Turbo C compiler V1.5
  9. #                               Borland Turbo Linker     V1.x
  10. #
  11. # Usage:
  12. #           make  -DMODEL=x -fmfdeltc.mak
  13. #
  14. #           where x is s, c, m, or l   case is important
  15. #/*
  16. # *
  17. # *   Copyright 1988  Allsoft (tm)
  18. # *   100 Calle Playa Del Sol NE
  19. # *   Albuquerque, NM  87109
  20. # *
  21. # *   ALL RIGHTS RESERVED.
  22. # *
  23. # *   Unauthorized distribution, adaptation or use may be 
  24. # *   subject to civil and criminal penalties.
  25. # *
  26. # */
  27. # ******* Filled by Polytron Version Control System ********
  28. #
  29. # $Author:   james borders  $
  30. #
  31. # $Date:   01 Dec 1988 12:23:48  $
  32. #
  33. # $Revision:   1.0  $
  34. #
  35. # **********************************************************
  36. #
  37. # NOTE:
  38. #
  39. # The Turbo C configuration file TURBOC.CFG must exist in the
  40. # current directory or in the directory containing TCC.EXE.
  41. # This file must have -I and -L directives which tell the Turbo
  42. # compiler and linker where to search for include files and libraries.
  43. #
  44. #
  45. # Compiler code for library identification
  46. #
  47. # ms == Microsoft C
  48. # tc == Turbo C
  49. #
  50. COMP =tc
  51. #
  52. # compiler default switches
  53. #
  54. OPT  =-G -O -K -w-pia -w-par
  55. #
  56. # other macros
  57. #
  58. # default model is LARGE
  59. #
  60. !if !$d(MODEL)
  61. MODEL = l
  62. !endif
  63.  
  64. CVC   = 
  65. CVL   = 
  66. REV   = 
  67. SRCS  = 
  68. DOCS  =
  69. OBJS  = mfdel.obj
  70. EXES  = 
  71. LIBS  = him$(COMP)$(MODEL).lib
  72. LIB   = 
  73. #
  74. # transformation rules
  75. #
  76. .c.obj: 
  77.         tcc -c -DTURBOC -m$(MODEL) $(OPT) $(CVC) $*.c
  78.  
  79. #
  80. # targets and dependencies
  81. #
  82. # .exe creation
  83. #
  84. mfdel.exe :   mfdel.obj 
  85.         tcc -m$(MODEL) $(OBJS) $(LIBS)
  86.  
  87. mfdel.obj :   mfdel.c 
  88.  
  89.  
  90.  
  91.  
  92.